home *** CD-ROM | disk | FTP | other *** search
- local scenario = GetProperties()
-
- scenario.Title = "dm_swiss"
- scenario.ScenarioType = SCT_DEATHMATCH
- scenario.Description = "dm_swiss_d"
- scenario.Map = "switzerland.dat"
- scenario.iSortOrder = 240
-
- scenario.SmallSecAllies = 5 -- from 14
- scenario.MediumSecAllies = 4 -- from 14
- scenario.LargeSecAllies = 2 -- from 7
-
- scenario.Picture = "Switzerland.dds"
- scenario.MapSize = 5
-
- SetAllies( AI_RELAXED, DENSITY_V_LOW, 3, 2, 0, 1, 1, 0 )
- SetAllies( AI_EASY, DENSITY_V_LOW, 3, 2, 0, 2, 1, 0 )
- SetAllies( AI_MEDIUM, DENSITY_V_LOW, 2, 2, 0, 2, 2, 0 )
- SetAllies( AI_HARD, DENSITY_V_LOW, 2, 1, 0, 3, 2, 0 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_V_LOW, 1, 1, 0, 3, 2, 0 )
-
- SetAllies( AI_RELAXED, DENSITY_LOW, 6, 4, 2, 4, 2, 0 )
- SetAllies( AI_EASY, DENSITY_LOW, 5, 4, 1, 3, 2, 1 )
- SetAllies( AI_MEDIUM, DENSITY_LOW, 4, 3, 1, 4, 3, 1 )
- SetAllies( AI_HARD, DENSITY_LOW, 4, 2, 1, 5, 4, 1 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_LOW, 4, 2, 0, 5, 3, 2 )
-
- SetAllies( AI_RELAXED, DENSITY_MEDIUM, 8, 5, 3, 4, 2, 1 )
- SetAllies( AI_EASY, DENSITY_MEDIUM, 7, 5, 3, 4, 3, 1 )
- SetAllies( AI_MEDIUM, DENSITY_MEDIUM, 5, 4, 2, 5, 4, 2 )
- SetAllies( AI_HARD, DENSITY_MEDIUM, 4, 4, 1, 6, 5, 2 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_MEDIUM, 3, 3, 1, 7, 6, 2 )
-
- SetAllies( AI_RELAXED, DENSITY_HIGH, 9, 7, 4, 4, 4, 1 )
- SetAllies( AI_EASY, DENSITY_HIGH, 8, 6, 4, 5, 4, 2 )
- SetAllies( AI_MEDIUM, DENSITY_HIGH, 6, 5, 3, 6, 5, 3 )
- SetAllies( AI_HARD, DENSITY_HIGH, 5, 4, 2, 6, 7, 4 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_HIGH, 3, 5, 1, 8, 8, 4 )
-
- SetAllies( AI_RELAXED, DENSITY_V_HIGH, 9, 8, 6, 5, 6, 1 )
- SetAllies( AI_EASY, DENSITY_V_HIGH, 8, 8, 5, 6, 6, 2 )
- SetAllies( AI_MEDIUM, DENSITY_V_HIGH, 7, 7, 3, 7, 7, 3 )
- SetAllies( AI_HARD, DENSITY_V_HIGH, 6, 6, 2, 8, 8, 5 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_V_HIGH, 6, 4, 2, 8, 10, 5 )
-
-
- scenario.bIsFirstDisclosureObliged = true
- scenario.FirstDisclose = 1
- scenario.FurtherDisclose = 1
-
- scenario.RevenueTurnsCount = 10
-
- function CheckForVictory()
- return dmCheckForVictory()
- end
-
- function OnShowObjectives()
- dmShowObjectives()
- end